home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / PSviewExample / InfoPanelView.m < prev    next >
Text File  |  1995-06-12  |  654b  |  37 lines

  1.  
  2. #import "InfoPanelView.h"
  3.  
  4. @implementation InfoPanelView
  5.  
  6.  
  7. /* 
  8.  * The first two lines clear the view,  The remaider display the
  9.  * message in the view.
  10.  */
  11. - drawSelf:(NXRect *) r: (int) count
  12. {
  13.     PSsetgray (NX_BLACK);
  14.     PSrectfill (bounds.origin.x, bounds.origin.y,
  15.         bounds.size.width, bounds.size.height);
  16.  
  17.         PSsetgray (NX_DKGRAY);
  18.         PSmoveto (15.0, 80.0);
  19.         PSselectfont ("Times-Italic", 45.0);
  20.         PSshow ("HEWLETT PACKARD");
  21.  
  22.         PSsetgray (NX_WHITE);
  23.         PSmoveto (15.0, 20.0);
  24.         PSselectfont ("Times-Romain", 65.0);
  25.         PSshow ("HPdatHelper");
  26.  
  27.         PSsetgray (NX_LTGRAY);    
  28.         PSmoveto (15.0, 70.0);
  29.         PSlineto(425,70);
  30.         PSstroke();
  31.  
  32.         return self;
  33. }
  34.  
  35.  
  36. @end
  37.